home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / prulebelow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  796 b   |  43 lines

  1. /*
  2.  *--- PRuleBelow.h --------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PRuleBelow__
  10. #define __PRuleBelow__
  11.  
  12.  
  13. #include "PMTypes.h"
  14.  
  15. class PGetRuleBelow;
  16.  
  17. class PRuleBelow
  18. {
  19.  
  20. public:
  21.  
  22.     PRuleBelow
  23.       (    PMBool            bRuleOn,
  24.         short            cStyle,
  25.         const char *    sLineColor,
  26.         short            cLineWidth,
  27.         long            xLeftIndent,
  28.         long            xRightIndent,
  29.         short            dWeight,
  30.         short            bOpaque,
  31.         short            nLineTint = -2 );
  32.     
  33.     PRuleBelow(const PGetRuleBelow& ruleInfo);
  34.  
  35. private:
  36.  
  37.     PRuleBelow();
  38. };
  39.  
  40. #endif
  41.  
  42. // end of PRuleBelow.h
  43.